home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'',
- 'Copyright': u'',
- 'Description': u'',
- 'Host': u'Paint Shop Pro X',
- 'Host Version': u'10.00 Alpha 20050620.13'
- }
-
- def Preset_DisplacementMap():
- return {
- 'Smoothness': 30,
- 'EdgeMode': App.Constants.EdgeMode.Repeat,
- 'DisplacementMethod': App.Constants.DisplacementMethod.Surface3D,
- 'DisplacementLayout': App.Constants.DisplacementLayout.Tile,
- 'DisplacementMapType': App.Constants.DisplacementMapType.Image,
- 'Scale': 10,
- 'Rotation': 0,
- 'FileName': u'0',
- 'Tile scale': 100,
- 'BackgroundColor': (0,0,0),
- 'Category': u''
- }
-
- def Do(Environment):
- # DisplacementMap_LOCALIZED
- App.Do( Environment, 'DisplacementMap', Preset_DisplacementMap())
-
-